home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / FourByFour / BigCube.java.z / BigCube.java
Encoding:
Java Source  |  2003-08-08  |  4.8 KB  |  136 lines

  1. /*
  2.  *    @(#)BigCube.java 1.10 02/04/01 15:03:28
  3.  *
  4.  * Copyright (c) 1996-2002 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  *
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in
  15.  *   the documentation and/or other materials provided with the
  16.  *   distribution.
  17.  *
  18.  * Neither the name of Sun Microsystems, Inc. or the names of
  19.  * contributors may be used to endorse or promote products derived
  20.  * from this software without specific prior written permission.
  21.  *
  22.  * This software is provided "AS IS," without a warranty of any
  23.  * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
  24.  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
  25.  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
  26.  * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
  27.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  28.  * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
  29.  * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  30.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  31.  * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  32.  * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
  33.  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  34.  *
  35.  * You acknowledge that Software is not designed,licensed or intended
  36.  * for use in the design, construction, operation or maintenance of
  37.  * any nuclear facility.
  38.  */
  39.  
  40. import java.applet.Applet;
  41. import java.awt.event.*;
  42. import javax.media.j3d.*;
  43. import javax.vecmath.*;
  44.  
  45. /**
  46.  * Class        BigCube
  47.  *
  48.  * Description: Creates the "big" cube used to mark the computer's
  49.  *              position.
  50.  *
  51.  * Version:     1.0
  52.  *
  53.  * Copyright (C) 1998 Sun Microsystems, Inc. All Rights Reserved.
  54.  */
  55. public class BigCube extends Object {
  56.  
  57.    private Shape3D shape3D;
  58.  
  59.    private static final float[] verts = {
  60.    // Front Face
  61.       5.0f, -5.0f,  5.0f,     5.0f,  5.0f,  5.0f,
  62.      -5.0f,  5.0f,  5.0f,    -5.0f, -5.0f,  5.0f,
  63.    // Back Face
  64.      -5.0f, -5.0f, -5.0f,    -5.0f,  5.0f, -5.0f,
  65.       5.0f,  5.0f, -5.0f,     5.0f, -5.0f, -5.0f,
  66.    // Right Face
  67.       5.0f, -5.0f, -5.0f,     5.0f,  5.0f, -5.0f,
  68.       5.0f,  5.0f,  5.0f,     5.0f, -5.0f,  5.0f,
  69.    // Left Face
  70.      -5.0f, -5.0f,  5.0f,    -5.0f,  5.0f,  5.0f,
  71.      -5.0f,  5.0f, -5.0f,    -5.0f, -5.0f, -5.0f,
  72.    // Top Face
  73.       5.0f,  5.0f,  5.0f,     5.0f,  5.0f, -5.0f,
  74.      -5.0f,  5.0f, -5.0f,    -5.0f,  5.0f,  5.0f,
  75.    // Bottom Face
  76.      -5.0f, -5.0f,  5.0f,    -5.0f, -5.0f, -5.0f,
  77.       5.0f, -5.0f, -5.0f,     5.0f, -5.0f,  5.0f,
  78.    };
  79.  
  80.    private static final float[] normals = {
  81.    // Front Face
  82.       0.0f,  0.0f,  1.0f,     0.0f,  0.0f,  1.0f,
  83.       0.0f,  0.0f,  1.0f,     0.0f,  0.0f,  1.0f,
  84.    // Back Face
  85.       0.0f,  0.0f, -1.0f,     0.0f,  0.0f, -1.0f,
  86.       0.0f,  0.0f, -1.0f,     0.0f,  0.0f, -1.0f,
  87.    // Right Face
  88.       1.0f,  0.0f,  0.0f,     1.0f,  0.0f,  0.0f,
  89.       1.0f,  0.0f,  0.0f,     1.0f,  0.0f,  0.0f,
  90.    // Left Face
  91.      -1.0f,  0.0f,  0.0f,    -1.0f,  0.0f,  0.0f,
  92.      -1.0f,  0.0f,  0.0f,    -1.0f,  0.0f,  0.0f,
  93.    // Top Face
  94.       0.0f,  1.0f,  0.0f,     0.0f,  1.0f,  0.0f,
  95.       0.0f,  1.0f,  0.0f,     0.0f,  1.0f,  0.0f,
  96.    // Bottom Face
  97.       0.0f, -1.0f,  0.0f,     0.0f, -1.0f,  0.0f,
  98.       0.0f, -1.0f,  0.0f,     0.0f, -1.0f,  0.0f,
  99.    };
  100.  
  101.    public BigCube(Appearance appearance) {
  102.  
  103.       QuadArray quadArray = new QuadArray(24, QuadArray.COORDINATES |
  104.                                               QuadArray.NORMALS );
  105.       quadArray.setCoordinates(0, verts);
  106.       quadArray.setNormals(0, normals);
  107.  
  108.       shape3D = new Shape3D(quadArray, appearance);
  109.       shape3D.setCapability(Shape3D.ALLOW_GEOMETRY_READ);
  110.       shape3D.setCapability(Shape3D.ALLOW_GEOMETRY_WRITE);
  111.       shape3D.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
  112.       shape3D.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
  113.    }
  114.  
  115.    public BigCube(Appearance appearance, float size) {
  116.  
  117.       QuadArray quadArray = new QuadArray(24, QuadArray.COORDINATES | 
  118.                                               QuadArray.NORMALS );
  119.  
  120.       for (int i=0; i<72; i++) verts[i] *= size;
  121.  
  122.       quadArray.setCoordinates(0, verts);
  123.       quadArray.setNormals(0, normals);
  124.  
  125.       shape3D = new Shape3D(quadArray, appearance);
  126.       shape3D.setCapability(Shape3D.ALLOW_GEOMETRY_READ);
  127.       shape3D.setCapability(Shape3D.ALLOW_GEOMETRY_WRITE);
  128.       shape3D.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
  129.       shape3D.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
  130.    }
  131.  
  132.    public Shape3D getChild() {
  133.       return shape3D;
  134.    }
  135. }
  136.